99乘法表變化版

#C#

Posted by Phyxsius on 2023-09-14

namespace ConsoleApp3
{
    internal class Program
    {
        static void Main(string[] args)
        {
            //呼叫方法
            ShowData(6, 8);
        }

        static void ShowData(int min, int max)
        {
            for (int i = min; i <= max; i++)
            {
                for (int j = min; j < max; j++)
                {
                    Console.Write(i + " * " + j + " = " + i * j + "\t");
                }
                Console.WriteLine();
            }
        }
    }
}

#C#







Related Posts

學習 Git - 有些檔案想被 Git 忽略

學習 Git - 有些檔案想被 Git 忽略

『Android』ADB Debug by wifi 用Wifi連線來Debug

『Android』ADB Debug by wifi 用Wifi連線來Debug

Day 148

Day 148


Comments